home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Terra Sound Library
/
Terra Sound Library.iso
/
player_composer
/
eagleplayer
/
ep_to_install
/
installdata
/
arexxexamples.lha
/
EP_LoadNext-Toggle.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1993-10-20
|
213b
|
16 lines
/* EaglePlayer - toggles LoadNext */
address 'rexx_EP'
options results
status G lon
if result == "no" then do
LoadNext yes
say "LoadNext is now on !"
end
else do
LoadNext no
say "LoadNext is now off !"
end